home *** CD-ROM | disk | FTP | other *** search
/ L' Effet Pommier 3 / L'Effet Pommier - Volume 03.iso / Graphismes / 3D / POV-Ray 3.0B5a PPC / POV-Ray 3.0B5a / POVSCN.Scenes / POV3DEMO / OTHER / IFELSE3.POV < prev    next >
Text File  |  1995-11-08  |  324b  |  16 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // Illustrates that #if #else can be nested and it works with #include
  3.  
  4. #version 3.0
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. #if (clock > 0.5)
  8.   #if (clock < 2.0)
  9.     #include "crack1.pov"
  10.   #else
  11.     #include "crack2.pov"
  12.   #end
  13. #else
  14.   #include "crack3.pov"
  15. #end
  16.